/* Add a title to the header area */ /* This adds a title to the header area that will display the document title, which is set using the skin 'Caption' on the 'General' tab */ $(document).ready(function(){ /* (1) This adds a title (div#header-title) to the header area after the logo (#header>a) for the normal desktop layout */ $("#header>a").after('
'); $("#header-title").text("Gocator Snapshot Sensor User Manual"); $("#header>a").after('
'); $("#header-subtitle").text("Firmware version 6.3.x.xx"); /* (2) This next part adds a title (div#responsive-header-title) to the header area after the logo (#responsiveHeader>a) for the responsive layout. */ $("#responsiveHeader>a").after('
'); $("#responsive-header-title").text("Gocator Snapshot Sensor User Manual - Firmware Version 6.3.x.xx"); }); /* Add a link to a skin stylesheet */ /* This adds a link to the skin.css file - Content/Resources/Styleheets/skin.css */ $('') .appendTo($('head')) .attr({type: 'text/css', rel: 'stylesheet'}) .attr('href', 'Content/Resources/Stylesheets/skin.css'); /* link also included in lowercase, in target is set to use lowercase filenames */ $('') .appendTo($('head')) .attr({type: 'text/css', rel: 'stylesheet'}) .attr('href', 'content/resources/stylesheets/skin.css'); /* Set logo link to LMI website (target set to _blank); add tooltip to link */ $(document).ready(function(){ $("div#header>a").attr("href", "https://lmi3d.com/"); $("div#header>a").attr("target", "_blank"); $("div#header>a").attr("title", "Go to LMI's website"); });